NotGeezArgumentException.js ➔ constructor   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
1
/**
2
 * Class NotGeezArgumentException.
3
 *
4
 * @author Sam As End <4sam21{at}gmail.com>
5
 */
6
module.exports = class NotGeezArgumentException extends Error {
0 ignored issues
show
Bug introduced by
The variable Error seems to be never initialized.
Loading history...
7
  constructor($argument) {
8
    super(`Not a geez number!, ${$argument} given.`);
9
  }
10
};
11